home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 21
/
Cream of the Crop 21 (Terry Blount) (October 1996).iso
/
windows
/
esftti22.zip
/
REGISTER.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-07-05
|
1KB
|
29 lines
echo off
cls
echo ┌────────────────────────────────────────────────────────────────────────┐
echo │ We are now ready to print a copy of the registration form for the ESF's│
echo │ TrueType Collection 1. Registered users receive a free font newsletter,│
echo │ additional bonus fonts, access to technical support, and can purchase │
echo │ our giant 202 outline TrueType collection at the special price of$49.50│
echo │ │
echo │ Make sure your printer is on and ready to run. This batch file assumes │
echo │ your printer is attached to LPT1:. If you use a different printer port │
echo │ hit Ctrl-C now to stop this batch file. Then restart the batch file, │
echo │ passing it the printer port you do use: │
echo │ │
echo │ REGISTER LPT2 or REGISTER COM1 │
echo │ │
echo │ If you *don't* want to print this, press the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └────────────────────────────────────────────────────────────────────────┘
pause
echo Printing a copy of ESF's TrueType Collection 1 Registration form....
if "%1"=="" goto DOLPT1
copy register.doc %1:
goto done
:DOLPT1
copy register.doc LPT1:
:done